home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / string / strerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  143 b   |  12 lines

  1. #include <errno.h>
  2. #include <string.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. char *strerror(int n)
  7. {
  8.     if(n<0||n>ERANGE) n=0;
  9.     return(_errors[n]);
  10. }
  11.  
  12.